home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / lib / mntlib44.zoo / mntlib / vscanf.c < prev    next >
C/C++ Source or Header  |  1994-03-01  |  205b  |  15 lines

  1. /* from Dale Schumacher's dLibs */
  2.  
  3. #include <stdio.h>
  4. #include <stdarg.h>
  5. #include "lib.h"
  6.  
  7. int
  8. vscanf(fmt, arg)
  9.   const char *fmt;
  10.   va_list arg;
  11. {
  12.   return (_scanf(stdin, fgetc, fungetc, fmt, arg));
  13. }
  14.  
  15.